home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / DESK / CORE / Desk / h / Clear < prev    next >
Text File  |  1996-05-21  |  650b  |  29 lines

  1.  
  2. #ifndef __Desk_Clear_h
  3. #define __Desk_Clear_h
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifndef __Desk_Wimp_h
  8. #include "Wimp.h"
  9. #endif
  10. typedef struct
  11. {
  12. char *creator;
  13. unsigned creatorversion;
  14. unsigned width,
  15. height;
  16. unsigned bpp;
  17. Desk_palette_entry *palette;
  18. unsigned char *bitmap;
  19. } Desk_clear_picture;
  20. void Desk_Clear_Init(char *creator, unsigned version);
  21. Desk_clear_picture *Desk_Clear_Load(char *filename);
  22. void Desk_Clear_Save(Desk_clear_picture *picture, char *filename);
  23. Desk_clear_picture *Desk_Clear_Create(unsigned width, unsigned height, unsigned bpp);
  24. void Desk_Clear_Free(Desk_clear_picture *picture);
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif
  29.